--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Commit 3ba7de9df735d1ee505f8ade34bf1950b83e64ea
Parents : b569371
Author : Sudo-Ivan <ivan@quad4.io>
Signature : Signature validation error
Date : 2026-01-04T00:02:30-06:00
feat(style): add no-scrollbar class to hide scrollbars for a cleaner UI
Changes
Diff
diff --git a/meshchatx/src/frontend/style.css b/meshchatx/src/frontend/style.css
index 48a2b83f..a4501d35 100644
--- a/meshchatx/src/frontend/style.css
+++ b/meshchatx/src/frontend/style.css
@@ -99,3 +99,12 @@ select.input-field option {
.dark .file-input::file-selector-button {
@apply bg-blue-500 hover:bg-blue-400 text-white;
}
+
+.no-scrollbar::-webkit-scrollbar {
+ display: none;
+}
+
+.no-scrollbar {
+ -ms-overflow-style: none;
+ scrollbar-width: none;
+}
──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────